body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f5faff;
  color: #333;
}

header {
  text-align: center;
  background: #2b9bf4;
  color: white;
  padding: 20px;
}

header h1 {
  margin: 0;

}

.about, .menu {
  padding: 20px;
  max-width: 900px;
  margin: auto;
  background-color: #0a5096;
  margin: 20px ;
  padding: 10px;
}


.about h2, .menu h2 {
  color: #000000;
  background-color: aqua;
  padding: 8px;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  margin-bottom: 15px;
}

.about p{
    color: #fff;
    font-size: 16px;
    font-family: 'Times New Roman', Times, serif;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.menu-item img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
}

.menu-item h3 {
  margin: 0;
  color: #2b9bf4;
}
.menu-item li {
  list-style: square;
  margin-left: 20px;
  margin-bottom: 6px;
  font-size: 16px;
  color: #555;
}
.back {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #3797eb, #00f2fe);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.back:hover {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

.back:active {
  transform: translateY(1px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);

}

footer {
  background-color: #0a5096;
  color: #ffffff;
  padding: 30px 20px;
  text-align: center;
  margin-top: 40px;
}

.footer-container {
  max-width: 900px;
  margin: 0 auto;
}

.footer p {
  margin: 8px 0;
  font-size: 14px;
  line-height: 1.6;
}

.footer p strong {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}